Owner.fromJson constructor

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

from json

Implementation

factory Owner.fromJson(Map<String, dynamic> json) => Owner(
      id: json["id"] == null ? null : json["id"],
      username: json["username"] == null ? null : json["username"],
    );