$FileLocation.fromJson constructor

$FileLocation.fromJson(
  1. Map json_
)

Implementation

$FileLocation.fromJson(core.Map json_)
    : this(
        filePath: json_.containsKey('filePath')
            ? json_['filePath'] as core.String
            : null,
      );