DetachStaticIpResult.fromJson constructor

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

Implementation

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