ConfigFile.fromJson constructor

ConfigFile.fromJson(
  1. Map json_
)

Implementation

ConfigFile.fromJson(core.Map json_)
    : this(
        fileContents: json_['fileContents'] as core.String?,
        filePath: json_['filePath'] as core.String?,
        fileType: json_['fileType'] as core.String?,
      );