WebPlatform.fromJson constructor

WebPlatform.fromJson(
  1. Map<String, dynamic> json
)

Constructs a WebPlatform from a JSON json map.

Implementation

factory WebPlatform.fromJson(Map<String, dynamic> json) {
  return WebPlatform(
    title: json['title']?.toString() ?? 'Bloom App',
  );
}