FileInput.fromJson constructor

FileInput.fromJson(
  1. Map json_
)

Implementation

FileInput.fromJson(core.Map json_)
  : this(
      fetchSettings: json_.containsKey('fetchSettings')
          ? FetchSettings.fromJson(
              json_['fetchSettings'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      fileInputType: json_['fileInputType'] as core.String?,
      fileName: json_['fileName'] as core.String?,
    );