fromStr method
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);
}
}