PlasmaInfo.fromJson constructor

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

Implementation

factory PlasmaInfo.fromJson(Map<String, dynamic> json) => PlasmaInfo(
      currentPlasma: json['currentPlasma'],
      maxPlasma: json['maxPlasma'],
      qsrAmount: json['qsrAmount'],
    );