toMap method

Map<String, dynamic> toMap()

Implementation

Map<String, dynamic> toMap() {
  // ignore: unnecessary_cast
  return {
    'identifier': this.identifier,
    'singleContactId': this.singleContactId,
    'unifiedContactId': this.unifiedContactId,
    'otherKeys': this.otherKeys,
  } as Map<String, dynamic>;
}