Owner.fromJson constructor

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

Implementation

factory Owner.fromJson(Map<String, dynamic> json) {
  return Owner(
    id: json['id'] as String?,
  );
}