toMap method

Map<String, dynamic> toMap()

Map representation of the model

Implementation

Map<String, dynamic> toMap() {
  return {
    ApiKeys.sha256: sha256,
    ApiKeys.applicationId: applicationId.trim(),
    ApiKeys.playStoreURL:
        'https://play.google.com/store/apps/details?id=${applicationId.trim()}',
  };
}