AutofeedSettings.fromJson constructor

AutofeedSettings.fromJson(
  1. Map json_
)

Implementation

AutofeedSettings.fromJson(core.Map json_)
  : this(
      eligible: json_['eligible'] as core.bool?,
      enableProducts: json_['enableProducts'] as core.bool?,
      name: json_['name'] as core.String?,
    );