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