ContainerBlkioDeviceRate.fromJson constructor
Deserialises from Docker's JSON representation.
Implementation
factory ContainerBlkioDeviceRate.fromJson(Map<String, dynamic> json) =>
ContainerBlkioDeviceRate(
path: json['Path'] as String?,
rate: json['Rate'] as int?,
);