fromJson static method
Implementation
static BackgroundFillSolid? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return BackgroundFillSolid(color: (json['color'] as int?) ?? 0);
}
static BackgroundFillSolid? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return BackgroundFillSolid(color: (json['color'] as int?) ?? 0);
}