VolumeUserInfoCopy.fromJson constructor

VolumeUserInfoCopy.fromJson(
  1. Map json_
)

Implementation

VolumeUserInfoCopy.fromJson(core.Map json_)
    : this(
        allowedCharacterCount: json_['allowedCharacterCount'] as core.int?,
        limitType: json_['limitType'] as core.String?,
        remainingCharacterCount:
            json_['remainingCharacterCount'] as core.int?,
        updated: json_['updated'] as core.String?,
      );