copyWith method

LKToken copyWith({
  1. String? access,
  2. String? refresh,
})

Implementation

LKToken copyWith({
  String? access,
  String? refresh,
}) {
  return LKToken(
    access: access ?? this.access,
    refresh: refresh ?? this.refresh,
  );
}