$Location02.fromJson constructor

$Location02.fromJson(
  1. Map json_
)

Implementation

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