decode static method

FlutterIdInfo decode(
  1. Object result
)

Implementation

static FlutterIdInfo decode(Object result) {
  result as List<Object?>;
  return FlutterIdInfo(
    country: result[0]! as String,
    idType: result[1] as String?,
    idNumber: result[2] as String?,
    firstName: result[3] as String?,
    middleName: result[4] as String?,
    lastName: result[5] as String?,
    dob: result[6] as String?,
    bankCode: result[7] as String?,
    entered: result[8] as bool?,
  );
}