decode static method
Implementation
static FlutterIdType decode(Object result) {
result as List<Object?>;
return FlutterIdType(
code: result[0]! as String,
example: (result[1] as List<Object?>?)!.cast<String?>(),
hasBack: result[2]! as bool,
name: result[3]! as String,
);
}