toMap method

Map<String, dynamic> toMap()

to map method

Implementation

Map<String, dynamic> toMap() {
  return {
    'privateKey': this.privateKey,
    'publicKey': this.publicKey,
    'address': this.address!.checkSumAddress.toString()
  };
}