fromJson static method

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

Implementation

static UserLocal fromJson(Map<String, dynamic> json) => UserLocal(
      id: json['userIdKey'],
      name: json['name'],
      imageURL: json['imgUrl'],
    );