parse method

TimeZone parse(
  1. String value
)

See the Rust documentation for parse for more information.

Implementation

TimeZone parse(String value) {
  final temp = _FinalizedArena();
  final result = _icu4x_IanaParser_parse_mv1(_ffi, value._utf8AllocIn(temp.arena));
  return TimeZone._fromFfi(result, []);
}