SentObject constructor

SentObject({
  1. required int id,
  2. required String method,
  3. required dynamic resolve(
    1. dynamic
    ),
  4. required dynamic reject(
    1. dynamic
    ),
  5. required Timer timer,
  6. required dynamic close(),
})

Implementation

SentObject(
    {required this.id,
    required this.method,
    required this.resolve,
    required this.reject,
    required this.timer,
    required this.close});