decode static method
Implementation
static FlutterServicesResponse decode(Object result) {
result as List<Object?>;
return FlutterServicesResponse(
bankCodes: (result[0] as List<Object?>?)!.cast<FlutterBankCode?>(),
hostedWeb: FlutterHostedWeb.decode(result[1]! as List<Object?>),
);
}