TMeUrl.fromJson constructor

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

Parse from a json

Implementation

factory TMeUrl.fromJson(Map<String, dynamic> json) => TMeUrl(
      url: json['url'],
      type: TMeUrlType.fromJson(json['type']),
    );