decode static method

FlutterCountryInfo decode(
  1. Object result
)

Implementation

static FlutterCountryInfo decode(Object result) {
  result as List<Object?>;
  return FlutterCountryInfo(
    countryCode: result[0]! as String,
    name: result[1]! as String,
    availableIdTypes: (result[2] as List<Object?>?)!.cast<FlutterAvailableIdType?>(),
  );
}