DetachDiskResult.fromJson constructor

DetachDiskResult.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory DetachDiskResult.fromJson(Map<String, dynamic> json) {
  return DetachDiskResult(
    operations: (json['operations'] as List?)
        ?.whereNotNull()
        .map((e) => Operation.fromJson(e as Map<String, dynamic>))
        .toList(),
  );
}