TeamDriveBackgroundImageFile.fromJson constructor

TeamDriveBackgroundImageFile.fromJson(
  1. Map json_
)

Implementation

TeamDriveBackgroundImageFile.fromJson(core.Map json_)
  : this(
      id: json_['id'] as core.String?,
      width: (json_['width'] as core.num?)?.toDouble(),
      xCoordinate: (json_['xCoordinate'] as core.num?)?.toDouble(),
      yCoordinate: (json_['yCoordinate'] as core.num?)?.toDouble(),
    );