WebPlatform.fromJson constructor
Constructs a WebPlatform from a JSON json map.
Implementation
factory WebPlatform.fromJson(Map<String, dynamic> json) {
return WebPlatform(
title: json['title']?.toString() ?? 'Bloom App',
);
}
Constructs a WebPlatform from a JSON json map.
factory WebPlatform.fromJson(Map<String, dynamic> json) {
return WebPlatform(
title: json['title']?.toString() ?? 'Bloom App',
);
}