NeoMilesUserWallet.fromJson constructor

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

Implementation

factory NeoMilesUserWallet.fromJson(Map<String, dynamic> json) {
  return NeoMilesUserWallet(
    data: json['data'] != null ? NeoMilesData.fromJson(json['data']) : null,
    message: json['message'] as String?,
  );
}