clone method

Creates a copy of this TModel.

For example:

var myModel2 = myModel1.clone();

Implementation

@override
FastNotificationCenterOptions clone() {
  return FastNotificationCenterOptions(
    leadingIcon: leadingIcon,
    iconColor: iconColor,
    iconSize: iconSize,
  );
}