AccountConversionSettings.fromJson constructor

AccountConversionSettings.fromJson(
  1. Map json_
)

Implementation

AccountConversionSettings.fromJson(core.Map json_)
    : this(
        freeListingsAutoTaggingEnabled:
            json_.containsKey('freeListingsAutoTaggingEnabled')
                ? json_['freeListingsAutoTaggingEnabled'] as core.bool
                : null,
      );