Account.fromJson constructor

Account.fromJson(
  1. Map<String, Object?> json
)

Account jsonizer. Allows freezed to add a from/toJson

Implementation

factory Account.fromJson(Map<String, Object?> json) =>
    _$AccountFromJson(json);