ListCredentialsResponse class

Response containing a paginated list of credentials.

Annotations
  • @immutable

Constructors

ListCredentialsResponse({required List<Credential> data, String? nextPage})
Creates a ListCredentialsResponse.
const
ListCredentialsResponse.fromJson(Map<String, dynamic> json)
Creates a ListCredentialsResponse from JSON.
factory

Properties

data List<Credential>
List of credentials.
final
hashCode int
The hash code for this object.
no setteroverride
nextPage String?
Pagination token for the next page, or null if no more results.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

copyWith({List<Credential>? data, Object? nextPage = unsetCopyWithValue}) ListCredentialsResponse
Creates a copy with replaced values.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Converts to JSON.
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
override