CoinDeveloperDataCodeChanges.fromJson constructor

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

Constructs an instance of CoinDeveloperDataCodeChanges from a JSON object.

The json parameter is a map containing the data to be parsed.

Implementation

CoinDeveloperDataCodeChanges.fromJson(Map<String, dynamic> json)
    : this.additions = Convert.toIntN(json['additions']),
      this.deletions = Convert.toIntN(json['deletions']);