GalleryReference.fromJson constructor

GalleryReference.fromJson(
  1. Map json_
)

Implementation

GalleryReference.fromJson(core.Map json_)
  : this(
      galleryTemplateId: json_['galleryTemplateId'] as core.String?,
      host: json_['host'] as core.String?,
      isModified: json_['isModified'] as core.bool?,
      owner: json_['owner'] as core.String?,
      repository: json_['repository'] as core.String?,
      signature: json_['signature'] as core.String?,
      templateDeveloperId: json_['templateDeveloperId'] as core.String?,
      version: json_['version'] as core.String?,
    );