BulkInsertOperationStatus.fromJson constructor
BulkInsertOperationStatus.fromJson(
- Map json_
Implementation
BulkInsertOperationStatus.fromJson(core.Map json_)
: this(
createdVmCount: json_['createdVmCount'] as core.int?,
deletedVmCount: json_['deletedVmCount'] as core.int?,
failedToCreateVmCount: json_['failedToCreateVmCount'] as core.int?,
status: json_['status'] as core.String?,
targetVmCount: json_['targetVmCount'] as core.int?,
);