DataAppwriteAuthTeam constructor

DataAppwriteAuthTeam({
  1. required String localName,
  2. required TfArg<String> id,
  3. TfArg<String>? projectId,
  4. String? provider,
  5. TfTimeouts? timeouts,
})

Implementation

DataAppwriteAuthTeam({
  required super.localName,
  required TfArg<String> id,
  TfArg<String>? projectId,
  super.provider,
  super.timeouts,
}) : super(
       terraformType: tfType,
       argMap: {'id': id, if (projectId != null) 'project_id': projectId},
     );