encrypt method

  1. @override
Future<String?> encrypt(
  1. dynamic object
)
override

Implementation

@override
Future<String?> encrypt(final dynamic object) async =>
    await super.encrypt(object == null ? object : object * _factor);