Related.fromMap constructor

Related.fromMap(
  1. Map<String, dynamic> json
)

Implementation

factory Related.fromMap(Map<String, dynamic> json) => Related(
      client: json["client"],
      onclick: json["onclick"],
      oncomplete: json["oncomplete"],
    );