PlacementStrategy.fromJson constructor

PlacementStrategy.fromJson(
  1. Map json_
)

Implementation

PlacementStrategy.fromJson(core.Map json_)
    : this(
        accountId: json_['accountId'] as core.String?,
        id: json_['id'] as core.String?,
        kind: json_['kind'] as core.String?,
        name: json_['name'] as core.String?,
      );