ManualScaling.fromJson constructor

ManualScaling.fromJson(
  1. Map json_
)

Implementation

ManualScaling.fromJson(core.Map json_)
    : this(
        instances: json_.containsKey('instances')
            ? json_['instances'] as core.int
            : null,
      );