asMap property

Map<String, String> asMap

Implementation

Map<String, String> get asMap {
  return {
    "publicKey": publicKey,
    "apiUrl": remoteHostBaseUrl,
    "googlePayEnvironment": googlePayEnvironment == GooglePayEnvironment.test
        ? "test"
        : "production",
    "languageKey": languageKey?.stringPresentation ?? "null",
    "theme": theme?.stringPresentation ?? "system"
  };
}