Logo.fromJson constructor

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

Implementation

factory Logo.fromJson(Map<String, dynamic> json) => Logo(
      text: json["text"],
      background: json["background"],
    );