RegExpReplace constructor

const RegExpReplace({
  1. required RegExp from,
  2. required String replace(
    1. Match match
    ),
})

Implementation

const RegExpReplace({
  required this.from,
  required this.replace,
});