listFromJson static method
Implementation
static List<MmBot>? listFromJson(
dynamic json, {
bool growable = false,
}) {
final result = <MmBot>[];
if (json is List && json.isNotEmpty) {
for (final row in json) {
final value = MmBot.fromJson(row);
if (value != null) {
result.add(value);
}
}
}
return result.toList(growable: growable);
}