getDecFloat34 method

IDecFloat34 getDecFloat34(
  1. IStatus status
)

Implementation

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