fromStr method

void fromStr(
  1. IStatus status,
  2. String from,
  3. Pointer<FbDec34> to
)

Implementation

void fromStr(IStatus status, String from, Pointer<FbDec34> to) {
  final fromUtf = from.toNativeUtf8(allocator: mem);
  try {
    _fromString(self, status.self, fromUtf, to);
    status.checkStatus();
  } finally {
    mem.free(fromUtf);
  }
}