FdcDataApplySuccess constructor

const FdcDataApplySuccess({
  1. Map<int, Object>? insertedKeys,
  2. Map<int, Map<String, Object?>>? serverRows,
})

Creates a FdcDataApplySuccess.

Implementation

const FdcDataApplySuccess({
  Map<int, Object>? insertedKeys,
  Map<int, Map<String, Object?>>? serverRows,
}) : super._(
       success: true,
       insertedKeys: insertedKeys ?? const <int, Object>{},
       serverRows: serverRows ?? const <int, Map<String, Object?>>{},
     );