Replication_Automatic.fromJson constructor

Replication_Automatic.fromJson(
  1. Object? j
)

Implementation

factory Replication_Automatic.fromJson(Object? j) {
  final json = j as Map<String, Object?>;
  return Replication_Automatic(
    customerManagedEncryption: switch (json['customerManagedEncryption']) {
      null => null,
      Object $1 => CustomerManagedEncryption.fromJson($1),
    },
  );
}