parse static method

Address? parse(
  1. Object? address
)

Parse an Address instance from raw data.

Implementation

static Address? parse(Object? address) {
  final helper = sharedAccountExtensions.addressHelper;
  return helper!.parseAddress(address);
}