writeUserRequestDataWithTime method

  1. @override
Future<bool> writeUserRequestDataWithTime(
  1. String key,
  2. String model,
  3. Duration? time
)
override

Write user request data with time key is unique identifier for the data model is an instance of the LocalModel class. time is an instance of the Duration class.

Return Future<bool>

Implementation

@override
Future<bool> writeUserRequestDataWithTime(
  String key,
  String model,
  Duration? time,
) async {
  return _customManager.writeUserRequestDataWithTime(key, model, time);
}