getDecFloat16 method

IDecFloat16 getDecFloat16(
  1. IStatus status
)

Implementation

IDecFloat16 getDecFloat16(IStatus status) {
  if (version < 4) {
    throw UnimplementedError(
        "Firebird client library version 4 or later required.");
  }
  final res = _getDecFloat16(self, status.self);
  status.checkStatus();
  return IDecFloat16(res);
}