ModifyLunaClientResponse.fromJson constructor

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

Implementation

factory ModifyLunaClientResponse.fromJson(Map<String, dynamic> json) {
  return ModifyLunaClientResponse(
    clientArn: json['ClientArn'] as String?,
  );
}