ImapSettings.fromJson constructor

ImapSettings.fromJson(
  1. Map json_
)

Implementation

ImapSettings.fromJson(core.Map json_)
  : this(
      autoExpunge: json_['autoExpunge'] as core.bool?,
      enabled: json_['enabled'] as core.bool?,
      expungeBehavior: json_['expungeBehavior'] as core.String?,
      maxFolderSize: json_['maxFolderSize'] as core.int?,
    );