copyWith method

ApplicationGetRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? applicationId,
})

Implementation

ApplicationGetRequest copyWith(
    {String? clientId, String? secret, String? applicationId}) {
  return ApplicationGetRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      applicationId: applicationId ?? this.applicationId);
}