BackupLocation.fromJson constructor

BackupLocation.fromJson(
  1. Map json_
)

Implementation

BackupLocation.fromJson(core.Map json_)
    : this(
        locationId: json_['locationId'] as core.String?,
        type: json_['type'] as core.String?,
      );