storeUserProfile method

  1. @override
Future<void> storeUserProfile(
  1. String userId,
  2. CachedProfileInformation profile
)
override

Implementation

@override
Future<void> storeUserProfile(
  String userId,
  CachedProfileInformation profile,
) =>
    _userProfilesBox.put(
      userId,
      profile.toJson(),
    );